home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Serious Demos / PageSentry 2.5.1 CD Demo / Sample AppleScripts / SendPage_Notify < prev    next >
Text File  |  1996-02-04  |  525b  |  15 lines

  1. --- PageSentry Notification Applet
  2. --- SendPage Alphanumeric Pager (for use with "Notify!™")
  3.  
  4. on «event SENTfail» sentryName given «class FURL»:failedURL, «class XTRA»:extra, «class STAT»:Status
  5.     
  6.     set PageCommand to "Page \"" & extra & "\" " & sentryName & "-" & Status & " " & failedURL
  7.     
  8.     --- To use Notify running on another machine, use:
  9.     --- tell application "Notify!™ Server" of machine "PageServer" of zone "PageServerZone"
  10.     
  11.     tell application "Notify!™ Server"
  12.         DoScript PageCommand
  13.     end tell
  14.     
  15. end «event SENTfail»